home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / arexx / toasterpaint / write8.rexx < prev   
OS/2 REXX Batch file  |  1995-12-22  |  441b  |  14 lines

  1. /*    Write8.rexx 1/31/95       */
  2. /*    Write out 8 fields to a clip */
  3.  
  4. parse arg InClipName","OutClipName","StartFrame","EndFrame              /* These are always passed to clip processing scripts */
  5.  
  6.  Address "DigiPaint"                                            /* The ToasterPaint ARexx port */
  7.  options results
  8.  
  9.  do Field = 1 to 8
  10.         'Apfc'                                                  /* Append the field to clip */
  11.  end
  12.  
  13.  
  14.